home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bash-completion.postrm < prev    next >
Text File  |  2008-06-19  |  257b  |  20 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     purge)
  7.     rm -f /etc/bash_completion
  8.     ;;
  9.     remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
  10.     ;;
  11.     *)
  12.         echo "postrm called with unknown argument \`$1'" >&2
  13.         exit 1
  14.     ;;
  15. esac
  16.  
  17.  
  18.  
  19. exit 0
  20.